>>
from
Control.Arrow
https://hackage.haskell.org/package/base-4.18.0.0/docs/Control-Arrow.html#v:-62--62--62-
code:hs
(>>>) :: Category cat => cat a b -> cat b c -> cat a c
f >>> g = g . f
普通に
arrow
版のただの関数合成